home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscheap2 / status.c < prev    next >
C/C++ Source or Header  |  1990-03-07  |  362b  |  21 lines

  1.         #include <stdio.h>
  2.  
  3.         #include <heap.h>
  4.  
  5.         //
  6.         //  Example of _heapstat from heap.man
  7.         //
  8.  
  9.         int main()
  10.         {
  11.         printf("Heap status : %s\n", _heapstat( _heapchk() ) );
  12.  
  13.         malloc( 1234 );
  14.  
  15.         printf("Heap status : %s\n", _heapstat( _heapchk() ) );
  16.  
  17.         return( 0 );
  18.         }
  19.  
  20.  
  21.